home *** CD-ROM | disk | FTP | other *** search
/ NT Sources / Infomagic - NT Source Volume 1 (Disc 1 of 2).iso / network / pcdctrla.exe / PCDCTRL.EXE / PCDWIN.TPU < prev    next >
Text File  |  1997-09-08  |  618b  |  22 lines

  1. !+++
  2. ! PCDUO_WIN_INI.TPU - Edit the Windows WIN.INI file for PC-Duo
  3. ! DB 04-Jul-95
  4. !---
  5.  
  6. LUT_start_edit ();      ! This reads the file (if it exists), creates a buffer,
  7.                         ! and positions us at the top of the buffer
  8.  
  9. IF LUT_buffer_empty
  10. THEN
  11.     quit;               ! Error - the input file must exist!
  12. ENDIF;
  13.  
  14. ! We have to edit 1 section, [windows], to check and remove any command
  15. ! to load the PC-Duo v1.02 Windows Slave from the run= line.
  16.  
  17. LUT_win_line_remove_list ("[windows]", "run", "wslave");
  18.  
  19. ! And now perform 'standard' finishing functions...
  20.  
  21. LUT_finish_edit ();
  22.